home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / IEditor / Expanders / MultiList / Edit_temp.c next >
Encoding:
C/C++ Source or Header  |  1997-06-17  |  5.6 KB  |  187 lines

  1. /*
  2.     C source code created by Interface Editor
  3.     Copyright © 1994-1996 by Simone Tellini
  4.  
  5.     Generator:  C_IE_Mod.generator 37.1 (29.4.96)
  6.  
  7.     Copy registered to :  Simone Tellini
  8.     Serial Number      : #0
  9. */
  10.  
  11. /*
  12.    In this file you'll find empty  template  routines
  13.    referenced in the GUI source.  You  can fill these
  14.    routines with your code or use them as a reference
  15.    to create your main program.
  16. */
  17.  
  18. #include <stdio.h>
  19. #include <exec/types.h>
  20.  
  21.  
  22. BOOL TagsVanillaKey( UBYTE, struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE )
  23. {
  24.     /*  Routine for IDCMP_VANILLAKEY  */
  25.     return( TRUE );
  26. }
  27.  
  28. BOOL PosTitKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  29. {
  30.     /*  Routine when "_Position"'s activation key is pressed  */
  31.  
  32.     /*  ...or return TRUE not to call the gadget function  */
  33.     return PosTitClicked( Wnd, Gadgets, IE );
  34. }
  35.  
  36. BOOL UndKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  37. {
  38.     /*  Routine when "_Underscore"'s activation key is pressed  */
  39.  
  40.     /*  ...or return TRUE not to call the gadget function  */
  41.     return UndClicked( Wnd, Gadgets, IE );
  42. }
  43.  
  44. BOOL HighKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  45. {
  46.     /*  Routine when "H_ighlight"'s activation key is pressed  */
  47.  
  48.     /*  ...or return TRUE not to call the gadget function  */
  49.     return HighClicked( Wnd, Gadgets, IE );
  50. }
  51.  
  52. BOOL OkKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  53. {
  54.     /*  Routine when "_Ok"'s activation key is pressed  */
  55.  
  56.     /*  ...or return TRUE not to call the gadget function  */
  57.     return OkClicked( Wnd, Gadgets, IE );
  58. }
  59.  
  60. BOOL AnnullaKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  61. {
  62.     /*  Routine when "_Cancel"'s activation key is pressed  */
  63.  
  64.     /*  ...or return TRUE not to call the gadget function  */
  65.     return AnnullaClicked( Wnd, Gadgets, IE );
  66. }
  67.  
  68. BOOL DisabKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  69. {
  70.     /*  Routine when "_Disabled"'s activation key is pressed  */
  71.  
  72.     /*  ...or return TRUE not to call the gadget function  */
  73.     return DisabClicked( Wnd, Gadgets, IE );
  74. }
  75.  
  76. BOOL ROnKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  77. {
  78.     /*  Routine when "_Read Only"'s activation key is pressed  */
  79.  
  80.     /*  ...or return TRUE not to call the gadget function  */
  81.     return ROnClicked( Wnd, Gadgets, IE );
  82. }
  83.  
  84. BOOL ShowKeyPressed( struct Window *Wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  85. {
  86.     /*  Routine when "S_how Selected"'s activation key is pressed  */
  87.  
  88.     /*  ...or return TRUE not to call the gadget function  */
  89.     return ShowClicked( Wnd, Gadgets, IE );
  90. }
  91.  
  92. BOOL TitClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  93. {
  94.     /*  Routine when "Tit_le" is clicked  */
  95.     return( TRUE );
  96. }
  97.  
  98. BOOL LabelClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  99. {
  100.     /*  Routine when "La_bel" is clicked  */
  101.     return( TRUE );
  102. }
  103.  
  104. BOOL PosTitClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  105. {
  106.     /*  Routine when "_Position" is clicked  */
  107.     return( TRUE );
  108. }
  109.  
  110. BOOL UndClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  111. {
  112.     /*  Routine when "_Underscore" is clicked  */
  113.     return( TRUE );
  114. }
  115.  
  116. BOOL HighClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  117. {
  118.     /*  Routine when "H_ighlight" is clicked  */
  119.     return( TRUE );
  120. }
  121.  
  122. BOOL OkClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  123. {
  124.     /*  Routine when "_Ok" is clicked  */
  125.     return( TRUE );
  126. }
  127.  
  128. BOOL AnnullaClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  129. {
  130.     /*  Routine when "_Cancel" is clicked  */
  131.     return( TRUE );
  132. }
  133.  
  134. BOOL TopClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  135. {
  136.     /*  Routine when "_Top         " is clicked  */
  137.     return( TRUE );
  138. }
  139.  
  140. BOOL VisClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  141. {
  142.     /*  Routine when "Make _Visible" is clicked  */
  143.     return( TRUE );
  144. }
  145.  
  146. BOOL ScWClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  147. {
  148.     /*  Routine when "Scroll _Width" is clicked  */
  149.     return( TRUE );
  150. }
  151.  
  152. BOOL SpcClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  153. {
  154.     /*  Routine when "Sp_acing     " is clicked  */
  155.     return( TRUE );
  156. }
  157.  
  158. BOOL DisabClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  159. {
  160.     /*  Routine when "_Disabled" is clicked  */
  161.     return( TRUE );
  162. }
  163.  
  164. BOOL ROnClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  165. {
  166.     /*  Routine when "_Read Only" is clicked  */
  167.     return( TRUE );
  168. }
  169.  
  170. BOOL ShowClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  171. {
  172.     /*  Routine when "S_how Selected" is clicked  */
  173.     return( TRUE );
  174. }
  175.  
  176. BOOL IHClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  177. {
  178.     /*  Routine when "Ite_m Height" is clicked  */
  179.     return( TRUE );
  180. }
  181.  
  182. BOOL MaxPClicked( struct Window *wnd, struct Gadget *Gadgets[], struct IE_Data *IE, struct IntuiMessage *Msg )
  183. {
  184.     /*  Routine when "Ma_x Pen    " is clicked  */
  185.     return( TRUE );
  186. }
  187.